Windows 10’un kilit ekranı duvar kağıtlarını saklamak için şu betiği kullanabilirsiniz.
Bu kodu copy_and_rename_login_wallpapers.bat adıyla kaydedin ve çalıştırın.
Duvar kağıtlarını \Pictures\Wallpapers\LoginScreen dizininde bulabileceksiniz.
@echo off
REM Define the source and destination directories
set src=%localappdata%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets
set dest=%userprofile%\Pictures\Wallpapers\LoginScreen
REM Create the destination directory if it doesn't exist
if not exist "%dest%" (
mkdir "%dest%"
)
REM Copy files from source to destination
xcopy "%src%\*" "%dest%\" /s /y
REM Loop through all files in the destination directory
cd /d "%dest%"
for %%f in (*) do (
REM Check if the file has no extension
if "%%~xf"=="" (
REM Rename the file to add the .png extension
ren "%%f" "%%f.png"
)
)
echo Done!
pause
Amerika’da yaşayan bir avukat ve yazılım geliştiriciyim. “Herkese açık not defterim” olarak tanımladığım bu sitede, gelecekteki kendim ve ilgilenen herkes için çoğunlukla teknik notlar paylaşıyorum.
Geliştirdiğim uygulamalardan biri Masterlist: Focus & Tasks (App Store). Gizliliğe saygılı, yalnızca yerel depolama kullanan, hangi görev ve projeye ne kadar zaman ayırdığınızı görebileceğiniz, Pomodoro tekniğiyle uyumlu bir görev yöneticisidir.